home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / localweb2k.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  58 lines

  1. # This script was created by Jason Lidow <jason@brandx.net>
  2. # The vulnerability was originally discovered by ts@securityoffice.net 
  3.  
  4. if(description)
  5.  
  6. {
  7.     script_id(11005);
  8.     script_bugtraq_id(2268, 4820, 7947);
  9.      script_cve_id("CVE-2001-0189");
  10.     script_version("$Revision: 1.11 $");
  11.     script_name(english:"LocalWeb2000 remote read");
  12.  
  13.     script_description(english:"
  14. The remote host is running LocalWeb2000. 
  15.  
  16. Version 2.1.0 of LocalWeb2000 allows an attacker to view protected 
  17. files on the host's computer. 
  18.  
  19. Example: http://www.vulnerableserver.com/./protectedfolder/protectedfile.htm
  20.  
  21. It may also disclose the NetBIOS name of the remote host when
  22. it receives malformed directory requests.
  23.  
  24. Solution: Contact http://www.intranet-server.co.uk for an update.
  25.     
  26. Risk factor : High");
  27.  
  28.     script_summary(english:"Checks for LocalWeb2000");
  29.  
  30.     script_category(ACT_GATHER_INFO);
  31.  
  32.     script_copyright(english:"This script is Copyright (C) 2002 Jason Lidow <jason@brandx.net>");
  33.     script_family(english:"Remote file access");
  34.     script_dependencie("find_service.nes", "httpver.nasl", "no404.nasl");
  35.     script_require_ports("Services/www", 80);
  36.     exit(0);
  37. }
  38.  
  39. include("http_func.inc");
  40.  
  41. port = get_http_port(default:80);
  42.  
  43.  
  44. if(!get_port_state(port))exit(0);
  45.  
  46.  
  47. banner = get_http_banner(port:port);
  48.   
  49.   
  50.  
  51. if(banner)
  52. {
  53.     if(egrep(pattern:"^Server: .*LocalWEB2000.*" , string:banner, icase:TRUE))
  54.     {
  55.     security_note(port);
  56.     }
  57. }
  58.